home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 016a / 4batch10.zip / LIST.BTM < prev    next >
Text File  |  1991-11-07  |  346b  |  25 lines

  1. @echo off
  2. rem * Intelligent LIST
  3. rem * will call VPIC for GIFs, PKUNZIP for ZIPs, etc..
  4. IF %@ext[%1]==gif goto gif
  5. IF %@ext[%1]==pcx goto gif
  6. IF %@ext[%1]==lbm goto gif
  7. IF %@ext[%1]==zip goto zip
  8. IF %@ext[%1]==arc goto arc
  9.  
  10. list %1
  11. goto exit
  12.  
  13. :arc
  14. pkxarc %1 -v
  15. goto exit
  16.  
  17. :zip
  18. pkunzip %1 -v
  19. goto exit
  20.  
  21. :gif
  22. vpic %1
  23.  
  24. :exit
  25.